body {
  background: url('/assets/bliss_dither.png');
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

#spacer {
  height: 80vh;
  display: flex;
  justify-content: center;
  margin: 25px 0 25px 0;
}

footer {
  background: url('/assets/rainbow.png');
  background-position: center center;
  background-size: cover;
  border: 3px outset white;
  border-radius: 0 0 10px 10px;
  width: 600px;
  filter: drop-shadow(2px 0px 0 black) drop-shadow(0px 2px 0 black) drop-shadow(-2px 0 0 black) drop-shadow(0 -2px 0 black);
  text-align: center;
  color: black;
}

a:hover {
  cursor: help;
}

.window {
  margin-bottom: 20px;
  filter: drop-shadow(1px 0px 0 black) drop-shadow(0px 1px 0 black) drop-shadow(-1px 0 0 black) drop-shadow(0 -1px 0 black);
}

.ico {
  display: inline-block;
  width: 10px;
  height: 10px;
}

.tooltip {
  position: relative;
}

.tooltip-content {
  position: absolute;
  background: white;
  width: fit-content;
  height: fit-content;
  border: 3px outset black;
}

.tooltip .tooltip-content {
  visibility: hidden;
  z-index: 1;
}

#ttone {
  top: 100%;
  left: 35%;
}

.tooltip:hover .tooltip-content {
  visibility: visible;
}

#stickies {
  width: 200px;
  min-width: 150px;
}

.navbar {
  width: 200px;
  min-width: 150px;
}

#marquee {
  color: white;
  position: relative;
  line-height: 0;
  display: inline-block;
  filter: drop-shadow(1px 0px 0 black) drop-shadow(0px 1px 0 black) drop-shadow(-1px 0 0 black) drop-shadow(0 -1px 0 black);
}

#main {
  background: url('/assets/rainbow.png');
  background-size: cover;
  background-position: center center;
  width: 600px;
  min-width: 300px;
  margin-right: 25px;
  margin-left: 25px;
  padding: 10px 50px 10px 50px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 3px outset white;
  border-radius: 10px 10px 0 0;
  filter: drop-shadow(2px 0px 0 black) drop-shadow(0px 2px 0 black) drop-shadow(-2px 0 0 black) drop-shadow(0 -2px 0 black);
  z-index: 1;
}

#pinned {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1;
}

.sticky {
  background: url('/assets/sticky.png');
  background-size: cover;
  background-position: center center;
  text-align: center;
  font-family: architects daughter;
  font-size: 15px;
  padding: 3px;
  box-sizing: border-box;
  height: 200px;
  min-width: 150px;
  filter: grayscale(100%);
  transition: transform .3s ease;
  object-fit: contain;
}

#sticky:hover,
#sticky2:hover,
#sticky3:hover,
#sticky4:hover {
  transform: scale(1.2);
  cursor: help;
  filter: grayscale(0);
}

#sticky, #sticky3 {
  transform: rotate(-5deg);
}

#sticky2, #sticky4 {
  transform: rotate(5deg);
}

#sitemap,
#stats,
#moon {
  height: fit-content;
  overflow: hidden;
  filter: grayscale(100%);
  transition: .3s ease;
}

#sitemap:hover,
#stats:hover,
#moon:hover {
  filter: grayscale(0);
}

#imood {
  display: inline-block;
  width: fit-content;
}

#guestbook {
  border: none;
}

#buttons {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1px
}

#buttons img {
  transition: .3s ease;
}

#buttons img:hover {
  transform: scale(1.2);
}

.musicplayer {
  object-fit: contain;
}

#controls {
  text-align: center;
  margin-top: 5px;
  padding: 5px 0 5px 0;
  display: flex;
  justify-content: space-around;
}

#songcover {
  border: 3px inset white;
}

#songcover>img {
  width: 100%;
  height: 100%;
}

.playpause {
  background-color: white;
  border: 3px inset white;
  box-sizing: border-box;
  padding: 6px 5px 0px 5px;
  width: 25px;
}

.playpause img {
  height: 12px;
}

.playpause:hover {
  cursor: help;
}

.songname {
  border: 3px inset white;
  background: white;
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
}

/* for chrome */
::-webkit-scrollbar {
  display: none;
}